home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / winmac32 / srecordr.dpr < prev    next >
Text File  |  1996-09-15  |  206b  |  14 lines

  1. {$I SRCOMOPT.INC}
  2. program srecordr;
  3.  
  4. uses
  5.   Forms,
  6.   Srmain in 'SRMAIN.PAS' {SuperRecorder};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TSuperRecorder, SuperRecorder);
  12.   Application.Run;
  13. end.
  14.